top of page
$w.onReady(function () { const now = new Date(); const currentHour = now.getHours(); // 현재 시간 (0~23) const currentMinute = now.getMinutes(); // 현재 분 (0~59) // 1. 현재 방문자 수 (백 단위 변동: 110명 ~ 290명 사이) const fakeLiveUsers = 110 + ((currentHour * 7 + currentMinute * 3) % 180); // 2. 현재 상담자 수 (30명 이내 변동: 10명 ~ 30명 사이) const fakeConsultants = 10 + ((currentHour * 3 + currentMinute * 2) % 21); // 화면 텍스트 상자에 천 단위 쉼표(,) 적용 후 출력 $w('#textLiveUsers').text = `${fakeLiveUsers.toLocaleString()}명`; $w('#textConsultants').text = `${fakeConsultants.toLocaleString()}명`; });